From: Ævar Arnfjörð Bjarmason Date: Tue, 12 Apr 2005 01:42:12 +0000 (+0000) Subject: * Adding thumbsize to getPageRenderingHash() as it will change the parser output. X-Git-Tag: 1.5.0alpha1~294 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=a6fb86a8cc10965685f015707a6aa963473869ee;p=lhc%2Fweb%2Fwiklou.git * Adding thumbsize to getPageRenderingHash() as it will change the parser output. --- diff --git a/includes/User.php b/includes/User.php index 018324f4e5..d0afccbda5 100644 --- a/includes/User.php +++ b/includes/User.php @@ -1160,6 +1160,7 @@ class User { $confstr .= '!' . $this->getOption( 'date' ); $confstr .= '!' . $this->getOption( 'numberheadings' ); $confstr .= '!' . $this->getOption( 'language' ); + $confstr .= '!' . $this->getOption( 'thumbsize' ); // add in language specific options, if any $extra = $wgContLang->getExtraHashOptions(); $confstr .= $extra;